home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Science / µSim 1.0b5 folder / source / CommonC.r < prev    next >
Encoding:
Text File  |  1994-04-07  |  1.2 KB  |  61 lines  |  [TEXT/MMCC]

  1. /*
  2. Copyright © 1993,1994 by Fabrizio Oddone
  3. ••• ••• ••• ••• ••• ••• ••• ••• ••• •••
  4. This source code is distributed as freeware: you can copy, exchange, modify this
  5. code as you wish. You may include this code in any kind of application: freeware,
  6. shareware, or commercial, provided that full credits are given.
  7. You may not sell or distribute this code for profit.
  8. */
  9.  
  10. #define SystemSevenOrLater 1
  11.  
  12. #include "SysTypes.r"
  13. #include "Types.r"
  14.  
  15. #include "BalloonC.r"
  16.  
  17. resource 'SIZE' (-1, purgeable) {
  18.     reserved,
  19.     acceptSuspendResumeEvents,
  20.     reserved,
  21.     canBackground,
  22.     doesActivateOnFGSwitch,
  23.     backgroundAndForeground,
  24.     dontGetFrontClicks,
  25.     ignoreChildDiedEvents,
  26.     is32BitCompatible,
  27.     isHighLevelEventAware,
  28.     localAndRemoteHLEvents,
  29.     isStationeryAware,
  30.     dontUseTextEditServices,
  31.     reserved,
  32.     reserved,
  33.     reserved,
  34.     311296,
  35.     278528
  36. };
  37.  
  38. resource 'STR ' (138, purgeable, preload) {
  39.     "µSimulator Prefs"
  40. };
  41.  
  42. data 'HAND' (128, purgeable, preload) {
  43.     $"E400"
  44. };
  45.  
  46. resource 'nrct' (128, locked, preload) {
  47.     {    /* array RectArray: 5 elements */
  48.         /* [1] */
  49.         {155, 451, 177, 485},
  50.         /* [2] */
  51.         {250, 258, 272, 486},
  52.         /* [3] */
  53.         {7, 70, 271, 244},
  54.         /* [4] */
  55.         {7, 5, 271, 52},
  56.         /* [5] */
  57.         {219, 257, 170, 430}
  58.     }
  59. };
  60.  
  61.